home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / scsh-0.4 / scsh-0 / scsh-0.4.2 / scsh / regexp / regerror.c < prev    next >
C/C++ Source or Header  |  1995-10-13  |  198b  |  15 lines

  1. #include <stdio.h>
  2.  
  3. void 
  4. regerror(s)
  5.     char           *s;
  6. {
  7. #ifdef ERRAVAIL
  8.     error("regexp: %s", s);
  9. #else
  10.     fprintf(stderr, "regexp(3): %s", s);
  11.     exit(1);
  12. #endif
  13.     /* NOTREACHED */
  14. }
  15.